home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / BPNN133U.ZIP / NNERROR.H < prev    next >
Text File  |  1992-11-19  |  597b  |  34 lines

  1. /*
  2. *----------------------------------------------------------------------------
  3. *    file:    nnerror.h
  4. *    desc:    define all errors
  5. *    by:    patrick ko
  6. *    date:    2 aug 91
  7. *----------------------------------------------------------------------------
  8. */
  9.  
  10. #define    NNMALLOC    0
  11. #define NNTFRERR    1
  12. #define NNTFIERR    2
  13. #define NNIOLAYER    3
  14. #define NN2MANYLAYER    4
  15. #define NN2FEWPATT    5
  16. #define    NN2MANYHIDDEN    6
  17. #define    NNOUTNOTOPEN    7
  18. #define    NNRFRERR    8
  19.  
  20. /*
  21. *    prototype
  22. */
  23. #ifdef    __TURBOC__
  24.  
  25. int    error    (int);
  26. void    verbose    (char *, char *);
  27.  
  28. #else
  29.  
  30. int    error     ( );
  31. void    verbose    ( );
  32.  
  33. #endif
  34.